home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
GL
/
flip
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
455b
|
33 lines
#!smake
include $(ROOT)/usr/include/make/commondefs
#
# Makefile for flip demo
#
TARGETS = flip
CFILES = flip.c light.c flipobj.c swirl.c hash.c
OBJECTS = flip.o light.o flipobj.o swirl.o hash.o
HFILES = flip.h light.h hash.h
LLDLIBS = ../libdemo/libdemo.a -lgl -lm
LCOPTS = -float
LCINCS = -I../libdemo
default all: $(TARGETS)
install:
$(MAKE) $(TARGETS)
include $(COMMONRULES)
${TARGETS}: ${OBJECTS}
${CCF} ${OBJECTS} $(LDFLAGS) -o $@